internal/filepathlite.lazybuf.buf (field)

11 uses

	internal/filepathlite (current package)
		path.go#L26: 	buf        []byte
		path.go#L33: 	if b.buf != nil {
		path.go#L34: 		return b.buf[i]
		path.go#L40: 	if b.buf == nil {
		path.go#L45: 		b.buf = make([]byte, len(b.path))
		path.go#L46: 		copy(b.buf, b.path[:b.w])
		path.go#L48: 	b.buf[b.w] = c
		path.go#L53: 	b.buf = slices.Insert(b.buf, 0, prefix...)
		path.go#L58: 	if b.buf == nil {
		path.go#L61: 	return b.volAndPath[:b.volLen] + string(b.buf[:b.w])